From: Stefan Monnier Date: Thu, 19 Feb 2009 22:14:12 +0000 (+0000) Subject: (rst-mode-abbrev-table): Mark entries as `system'. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~421^2~1689 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=df7b942eb4cfa4ea97dc073e7af01b57965f0b49;p=emacs.git (rst-mode-abbrev-table): Mark entries as `system'. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e2751500e24..f087991b5df 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2009-02-19 Stefan Monnier + + * textmodes/rst.el (rst-mode-abbrev-table): Mark entries as `system'. + 2009-02-19 Andreas Schwab * term.el: Remap self-insert-command to term-send-raw in diff --git a/lisp/textmodes/rst.el b/lisp/textmodes/rst.el index 87760bb6b94..de2a5350f3c 100644 --- a/lisp/textmodes/rst.el +++ b/lisp/textmodes/rst.el @@ -310,14 +310,14 @@ This inherits from Text mode.") (defvar rst-mode-abbrev-table nil "Abbrev table used while in Rst mode.") (define-abbrev-table 'rst-mode-abbrev-table - '( - ("contents" ".. contents::\n..\n " nil 0) - ("con" ".. contents::\n..\n " nil 0) - ("cont" "[...]" nil 0) - ("skip" "\n\n[...]\n\n " nil 0) - ("seq" "\n\n[...]\n\n " nil 0) - ;; FIXME: Add footnotes, links, and more. - )) + (mapcar (lambda (x) (append x '(nil 0 system))) + '(("contents" ".. contents::\n..\n ") + ("con" ".. contents::\n..\n ") + ("cont" "[...]") + ("skip" "\n\n[...]\n\n ") + ("seq" "\n\n[...]\n\n ") + ;; FIXME: Add footnotes, links, and more. + ))) ;; Syntax table.